home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Security / McAfee SiteAdvisor 26.6 / safe.xpi / chrome / safe.jar / content / aboutdlg.xul < prev    next >
Extensible Markup Language  |  2007-07-22  |  1KB  |  28 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> 
  3. <!DOCTYPE overlay SYSTEM "chrome://safe/locale/safe.dtd">
  4. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" buttons="accept" id="safe-about" screenX="10" screenY="10" width="500" height="300" persist="screenX,screenY" windowtype="safe:about" title="&safe.about.dlg.title;">
  5.  
  6.   <hbox align="center">
  7.     <html:iframe id="aboutiframe" src="chrome://safe/content/aboutdlg.xhtml" height="200" flex="1"/>
  8.   </hbox>
  9.  
  10.   <hbox flex="1" align="center">
  11.     <label value="&safe.about.dlg.version; "/>
  12.     <label id="versionstr" value=""/>
  13.     <label value="&safe.about.dlg.build; "/>
  14.     <label id="buildstr" value=""/>
  15.   </hbox>
  16.  
  17.   <script>
  18.     document.getElementById("versionstr").value = window.arguments[0];
  19.     document.getElementById("buildstr").value = window.arguments[1];
  20.     function getArgString()
  21.     {
  22.         return window.arguments[2];
  23.     }
  24.   </script>
  25.   <keyset id="SafeKeyset">
  26.     <key keycode="VK_ESCAPE" oncommand="window.close();"/>
  27.   </keyset>
  28. </dialog>